home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 1 / Mac Magazin and MacEasy Magazine CD - Issue 01.iso / Sharewarebibliothek / Powermac / C64 / SOURCE / Error.c < prev    next >
Text File  |  1994-06-06  |  2KB  |  55 lines

  1. /*
  2.     Commodore 64 Emulator v0.4      Earle F. Philhower III 
  3.     Copyright (C) 1993-4            (st916w9r@dunx1.ocs.drexel.edu)
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19.  
  20. #include "Processor.h"
  21. #include "Memory.h"
  22. #include "Error.h"
  23. #include "Resources.h"
  24.  
  25. void ExitError(unsigned int err)
  26. {
  27.     Str255 str;
  28.     
  29.     /* Get enough free memory to display an alert */
  30.     MemoryCleanUp();
  31.     
  32.     /* Get string corresponding to current FATAL error condition */
  33.     GetIndString(str, kErrorStrings, err);
  34.  
  35.     /* Store that string in our dialog ParamText (^0) */
  36.     if (str[0]!=0) ParamText(str, "\p", "\p", "\p");
  37.     /* String not found, generic error condition */
  38.     else ParamText("\pUnknown error condition.  Program may be corrupted.", "\p", "\p", "\p");
  39.     
  40.     /* Display the alert. When user clicks OK exit */
  41.     StopAlert(kErrorAlert, nil);
  42.     ExitToShell();
  43. }
  44.  
  45. void InternalError(signed int err)
  46. {
  47.     Str255 str;
  48.     
  49.     /* Get string corresponding to current internal error condition */
  50.     GetIndString(str, kInternalErrorStrings, -err);
  51.  
  52.     /* Drop into MacsBug with error displayed */
  53.     DebugStr(str);
  54. }
  55.